home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource4
/
295_01
/
bool.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-12-30
|
316 b
|
16 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "bool.h 1.2 - 89/10/31" */
/* boolean definitions */
#ifndef BOOL_H /* prevent multiple includes */
#define BOOL_H
typedef unsigned char bool;
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif /* #ifndef BOOL_H */